IDictionary.IsReadOnly Property

Task Parallel System.Threading

Gets a value indicating whether the IDictionary<(Of <(TKey, TValue>)>) is read-only.

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Private ReadOnly Property IsReadOnly As Boolean
	Implements IDictionary.IsReadOnly
C#
bool IDictionary.IsReadOnly { get; }

Field Value

true if the IDictionary<(Of <(TKey, TValue>)>) is read-only; otherwise, false. For ConcurrentDictionary<(Of <(TKey, TValue>)>), this property always returns false.

Implements

IDictionary..::.IsReadOnly

See Also